home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gcc_260.zip / gcc_260 / cpp.info-3 (.txt) < prev    next >
GNU Info File  |  1994-07-13  |  20KB  |  373 lines

  1. This is Info file cpp.info, produced by Makeinfo-1.54 from the input
  2. file cpp.texi.
  3.    This file documents the GNU C Preprocessor.
  4.    Copyright 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the entire resulting derived work is distributed under the terms
  11. of a permission notice identical to this one.
  12.    Permission is granted to copy and distribute translations of this
  13. manual into another language, under the above conditions for modified
  14. versions.
  15. File: cpp.info,  Node: Invocation,  Next: Concept Index,  Prev: Output,  Up: Top
  16. Invoking the C Preprocessor
  17. ===========================
  18.    Most often when you use the C preprocessor you will not have to
  19. invoke it explicitly: the C compiler will do so automatically.
  20. However, the preprocessor is sometimes useful on its own.
  21.    The C preprocessor expects two file names as arguments, INFILE and
  22. OUTFILE.  The preprocessor reads INFILE together with any other files
  23. it specifies with `#include'.  All the output generated by the combined
  24. input files is written in OUTFILE.
  25.    Either INFILE or OUTFILE may be `-', which as INFILE means to read
  26. from standard input and as OUTFILE means to write to standard output.
  27. Also, if OUTFILE or both file names are omitted, the standard output
  28. and standard input are used for the omitted file names.
  29.    Here is a table of command options accepted by the C preprocessor.
  30. These options can also be given when compiling a C program; they are
  31. passed along automatically to the preprocessor when it is invoked by the
  32. compiler.
  33.      Inhibit generation of `#'-lines with line-number information in
  34.      the output from the preprocessor (*note Output::.).  This might be
  35.      useful when running the preprocessor on something that is not C
  36.      code and will be sent to a program which might be confused by the
  37.      `#'-lines.
  38.      Do not discard comments: pass them through to the output file.
  39.      Comments appearing in arguments of a macro call will be copied to
  40.      the output before the expansion of the macro call.
  41. `-traditional'
  42.      Try to imitate the behavior of old-fashioned C, as opposed to ANSI
  43.      C.
  44.         * Traditional macro expansion pays no attention to singlequote
  45.           or doublequote characters; macro argument symbols are
  46.           replaced by the argument values even when they appear within
  47.           apparent string or character constants.
  48.         * Traditionally, it is permissible for a macro expansion to end
  49.           in the middle of a string or character constant.  The
  50.           constant continues into the text surrounding the macro call.
  51.         * However, traditionally the end of the line terminates a
  52.           string or character constant, with no error.
  53.         * In traditional C, a comment is equivalent to no text at all.
  54.           (In ANSI C, a comment counts as whitespace.)
  55.         * Traditional C does not have the concept of a "preprocessing
  56.           number".  It considers `1.0e+4' to be three tokens: `1.0e',
  57.           `+', and `4'.
  58.         * A macro is not suppressed within its own definition, in
  59.           traditional C.  Thus, any macro that is used recursively
  60.           inevitably causes an error.
  61.         * The character `#' has no special meaning within a macro
  62.           definition in traditional C.
  63.         * In traditional C, the text at the end of a macro expansion
  64.           can run together with the text after the macro call, to
  65.           produce a single token.  (This is impossible in ANSI C.)
  66.         * Traditionally, `\' inside a macro argument suppresses the
  67.           syntactic significance of the following character.
  68. `-trigraphs'
  69.      Process ANSI standard trigraph sequences.  These are
  70.      three-character sequences, all starting with `??', that are
  71.      defined by ANSI C to stand for single characters.  For example,
  72.      `??/' stands for `\', so `'??/n'' is a character constant for a
  73.      newline.  Strictly speaking, the GNU C preprocessor does not
  74.      support all programs in ANSI Standard C unless `-trigraphs' is
  75.      used, but if you ever notice the difference it will be with relief.
  76.      You don't want to know any more about trigraphs.
  77. `-pedantic'
  78.      Issue warnings required by the ANSI C standard in certain cases
  79.      such as when text other than a comment follows `#else' or `#endif'.
  80. `-pedantic-errors'
  81.      Like `-pedantic', except that errors are produced rather than
  82.      warnings.
  83. `-Wtrigraphs'
  84.      Warn if any trigraphs are encountered (assuming they are enabled).
  85. `-Wcomment'
  86.      Warn whenever a comment-start sequence `/*' appears in a comment.
  87. `-Wall'
  88.      Requests both `-Wtrigraphs' and `-Wcomment' (but not
  89.      `-Wtraditional').
  90. `-Wtraditional'
  91.      Warn about certain constructs that behave differently in
  92.      traditional and ANSI C.
  93. `-I DIRECTORY'
  94.      Add the directory DIRECTORY to the end of the list of directories
  95.      to be searched for header files (*note Include Syntax::.).  This
  96.      can be used to override a system header file, substituting your
  97.      own version, since these directories are searched before the system
  98.      header file directories.  If you use more than one `-I' option,
  99.      the directories are scanned in left-to-right order; the standard
  100.      system directories come after.
  101. `-I-'
  102.      Any directories specified with `-I' options before the `-I-'
  103.      option are searched only for the case of `#include "FILE"'; they
  104.      are not searched for `#include <FILE>'.
  105.      If additional directories are specified with `-I' options after
  106.      the `-I-', these directories are searched for all `#include'
  107.      commands.
  108.      In addition, the `-I-' option inhibits the use of the current
  109.      directory as the first search directory for `#include "FILE"'.
  110.      Therefore, the current directory is searched only if it is
  111.      requested explicitly with `-I.'.  Specifying both `-I-' and `-I.'
  112.      allows you to control precisely which directories are searched
  113.      before the current one and which are searched after.
  114. `-nostdinc'
  115.      Do not search the standard system directories for header files.
  116.      Only the directories you have specified with `-I' options (and the
  117.      current directory, if appropriate) are searched.
  118. `-nostdinc++'
  119.      Do not search for header files in the C++-specific standard
  120.      directories, but do still search the other standard directories.
  121.      (This option is used when building libg++.)
  122. `-D NAME'
  123.      Predefine NAME as a macro, with definition `1'.
  124. `-D NAME=DEFINITION'
  125.      Predefine NAME as a macro, with definition DEFINITION.  There are
  126.      no restrictions on the contents of DEFINITION, but if you are
  127.      invoking the preprocessor from a shell or shell-like program you
  128.      may need to use the shell's quoting syntax to protect characters
  129.      such as spaces that have a meaning in the shell syntax.  If you
  130.      use more than one `-D' for the same NAME, the rightmost definition
  131.      takes effect.
  132. `-U NAME'
  133.      Do not predefine NAME.  If both `-U' and `-D' are specified for
  134.      one name, the `-U' beats the `-D' and the name is not predefined.
  135. `-undef'
  136.      Do not predefine any nonstandard macros.
  137. `-A PREDICATE(ANSWER)'
  138.      Make an assertion with the predicate PREDICATE and answer ANSWER.
  139.      *Note Assertions::.
  140.      You can use `-A-' to disable all predefined assertions; it also
  141.      undefines all predefined macros that identify the type of target
  142.      system.
  143. `-dM'
  144.      Instead of outputting the result of preprocessing, output a list of
  145.      `#define' commands for all the macros defined during the execution
  146.      of the preprocessor, including predefined macros.  This gives you
  147.      a way of finding out what is predefined in your version of the
  148.      preprocessor; assuming you have no file `foo.h', the command
  149.           touch foo.h; cpp -dM foo.h
  150.      will show the values of any predefined macros.
  151. `-dD'
  152.      Like `-dM' except in two respects: it does *not* include the
  153.      predefined macros, and it outputs *both* the `#define' commands
  154.      and the result of preprocessing.  Both kinds of output go to the
  155.      standard output file.
  156. `-M [-MG]'
  157.      Instead of outputting the result of preprocessing, output a rule
  158.      suitable for `make' describing the dependencies of the main source
  159.      file.  The preprocessor outputs one `make' rule containing the
  160.      object file name for that source file, a colon, and the names of
  161.      all the included files.  If there are many included files then the
  162.      rule is split into several lines using `\'-newline.
  163.      `-MG' says to treat missing header files as generated files and
  164.      assume they live in the same directory as the source file.  It
  165.      must be specified in addition to `-M'.
  166.      This feature is used in automatic updating of makefiles.
  167. `-MM [-MG]'
  168.      Like `-M' but mention only the files included with `#include
  169.      "FILE"'.  System header files included with `#include <FILE>' are
  170.      omitted.
  171. `-MD FILE'
  172.      Like `-M' but the dependency information is written to FILE.  This
  173.      is in addition to compiling the file as specified--`-MD' does not
  174.      inhibit ordinary compilation the way `-M' does.
  175.      When invoking gcc, do not specify the FILE argument.  Gcc will
  176.      create file names made by replacing ".c" with ".d" at the end of
  177.      the input file names.
  178.      In Mach, you can use the utility `md' to merge multiple dependency
  179.      files into a single dependency file suitable for using with the
  180.      `make' command.
  181. `-MMD FILE'
  182.      Like `-MD' except mention only user header files, not system
  183.      header files.
  184.      Print the name of each header file used, in addition to other
  185.      normal activities.
  186. `-imacros FILE'
  187.      Process FILE as input, discarding the resulting output, before
  188.      processing the regular input file.  Because the output generated
  189.      from FILE is discarded, the only effect of `-imacros FILE' is to
  190.      make the macros defined in FILE available for use in the main
  191.      input.
  192. `-include FILE'
  193.      Process FILE as input, and include all the resulting output,
  194.      before processing the regular input file.
  195. `-idirafter DIR'
  196.      Add the directory DIR to the second include path.  The directories
  197.      on the second include path are searched when a header file is not
  198.      found in any of the directories in the main include path (the one
  199.      that `-I' adds to).
  200. `-iprefix PREFIX'
  201.      Specify PREFIX as the prefix for subsequent `-iwithprefix' options.
  202. `-iwithprefix DIR'
  203.      Add a directory to the second include path.  The directory's name
  204.      is made by concatenating PREFIX and DIR, where PREFIX was
  205.      specified previously with `-iprefix'.
  206. `-isystem DIR'
  207.      Add a directory to the beginning of the second include path,
  208.      marking it as a system directory, so that it gets the same special
  209.      treatment as is applied to the standard system directories.
  210. `-lang-c'
  211. `-lang-c++'
  212. `-lang-objc'
  213. `-lang-objc++'
  214.      Specify the source language.  `-lang-c++' makes the preprocessor
  215.      handle C++ comment syntax (comments may begin with `//', in which
  216.      case they end at end of line), and includes extra default include
  217.      directories for C++; and `-lang-objc' enables the Objective C
  218.      `#import' command.  `-lang-c' explicitly turns off both of these
  219.      extensions, and `-lang-objc++' enables both.
  220.      These options are generated by the compiler driver `gcc', but not
  221.      passed from the `gcc' command line.
  222. `-lint'
  223.      Look for commands to the program checker `lint' embedded in
  224.      comments, and emit them preceded by `#pragma lint'.  For example,
  225.      the comment `/* NOTREACHED */' becomes `#pragma lint NOTREACHED'.
  226.      This option is available only when you call `cpp' directly; `gcc'
  227.      will not pass it from its command line.
  228.      Forbid the use of `$' in identifiers.  This is required for ANSI
  229.      conformance.  `gcc' automatically supplies this option to the
  230.      preprocessor if you specify `-ansi', but `gcc' doesn't recognize
  231.      the `-$' option itself--to use it without the other effects of
  232.      `-ansi', you must call the preprocessor directly.
  233. File: cpp.info,  Node: Concept Index,  Next: Index,  Prev: Invocation,  Up: Top
  234. Concept Index
  235. *************
  236. * Menu:
  237. * ##:                                   Concatenation.
  238. * arguments in macro definitions:       Argument Macros.
  239. * assertions:                           Assertions.
  240. * assertions, undoing:                  Assertions.
  241. * blank macro arguments:                Argument Macros.
  242. * cascaded macros:                      Cascaded Macros.
  243. * commands:                             Commands.
  244. * commenting out code:                  Deleted Code.
  245. * computed #include:                    Include Syntax.
  246. * concatenation:                        Concatenation.
  247. * conditionals:                         Conditionals.
  248. * expansion of arguments:               Argument Prescan.
  249. * function-like macro:                  Argument Macros.
  250. * header file:                          Header Files.
  251. * including just once:                  Once-Only.
  252. * inheritance:                          Inheritance.
  253. * invocation of the preprocessor:       Invocation.
  254. * line control:                         Combining Sources.
  255. * macro argument expansion:             Argument Prescan.
  256. * macro body uses macro:                Cascaded Macros.
  257. * macros with argument:                 Argument Macros.
  258. * manifest constant:                    Simple Macros.
  259. * newlines in macro arguments:          Newlines in Args.
  260. * null command:                         Other Commands.
  261. * options:                              Invocation.
  262. * output format:                        Output.
  263. * overriding a header file:             Inheritance.
  264. * parentheses in macro bodies:          Macro Parentheses.
  265. * pitfalls of macros:                   Macro Pitfalls.
  266. * predefined macros:                    Predefined.
  267. * predicates:                           Assertions.
  268. * preprocessor commands:                Commands.
  269. * prescan of macro arguments:           Argument Prescan.
  270. * problems with macros:                 Macro Pitfalls.
  271. * redefining macros:                    Redefining.
  272. * repeated inclusion:                   Once-Only.
  273. * retracting assertions:                Assertions.
  274. * second include path:                  Invocation.
  275. * self-reference:                       Self-Reference.
  276. * semicolons (after macro calls):       Swallow Semicolon.
  277. * side effects (in macro arguments):    Side Effects.
  278. * simple macro:                         Simple Macros.
  279. * space as macro argument:              Argument Macros.
  280. * standard predefined macros:           Standard Predefined.
  281. * stringification:                      Stringification.
  282. * testing predicates:                   Assertions.
  283. * unassert:                             Assertions.
  284. * undefining macros:                    Undefining.
  285. * unsafe macros:                        Side Effects.
  286. File: cpp.info,  Node: Index,  Prev: Concept Index,  Up: Top
  287. Index of Commands, Macros and Options
  288. *************************************
  289. * Menu:
  290. * #assert:                              Assertions.
  291. * #cpu:                                 Assertions.
  292. * #define:                              Argument Macros.
  293. * #elif:                                #elif Command.
  294. * #else:                                #else Command.
  295. * #error:                               #error Command.
  296. * #ident:                               Other Commands.
  297. * #if:                                  Conditional Syntax.
  298. * #ifdef:                               Conditionals-Macros.
  299. * #ifndef:                              Conditionals-Macros.
  300. * #import:                              Once-Only.
  301. * #include:                             Include Syntax.
  302. * #include_next:                        Inheritance.
  303. * #line:                                Combining Sources.
  304. * #machine:                             Assertions.
  305. * #pragma:                              Other Commands.
  306. * #pragma once:                         Once-Only.
  307. * #system:                              Assertions.
  308. * #unassert:                            Assertions.
  309. * #warning:                             #error Command.
  310. * -$:                                   Invocation.
  311. * -A:                                   Invocation.
  312. * -C:                                   Invocation.
  313. * -D:                                   Invocation.
  314. * -dD:                                  Invocation.
  315. * -dM:                                  Invocation.
  316. * -H:                                   Invocation.
  317. * -I:                                   Invocation.
  318. * -idirafter:                           Invocation.
  319. * -imacros:                             Invocation.
  320. * -include:                             Invocation.
  321. * -iprefix:                             Invocation.
  322. * -isystem:                             Invocation.
  323. * -iwithprefix:                         Invocation.
  324. * -lang-c:                              Invocation.
  325. * -lang-c++:                            Invocation.
  326. * -lang-objc:                           Invocation.
  327. * -lang-objc++:                         Invocation.
  328. * -M:                                   Invocation.
  329. * -MD:                                  Invocation.
  330. * -MM:                                  Invocation.
  331. * -MMD:                                 Invocation.
  332. * -nostdinc:                            Invocation.
  333. * -nostdinc++:                          Invocation.
  334. * -P:                                   Invocation.
  335. * -pedantic:                            Invocation.
  336. * -pedantic-errors:                     Invocation.
  337. * -traditional:                         Invocation.
  338. * -trigraphs:                           Invocation.
  339. * -U:                                   Invocation.
  340. * -undef:                               Invocation.
  341. * -Wall:                                Invocation.
  342. * -Wcomment:                            Invocation.
  343. * -Wtraditional:                        Invocation.
  344. * -Wtrigraphs:                          Invocation.
  345. * BSD:                                  Nonstandard Predefined.
  346. * defined:                              Conditionals-Macros.
  347. * M68020:                               Nonstandard Predefined.
  348. * m68k:                                 Nonstandard Predefined.
  349. * mc68000:                              Nonstandard Predefined.
  350. * ns32000:                              Nonstandard Predefined.
  351. * pyr:                                  Nonstandard Predefined.
  352. * sequent:                              Nonstandard Predefined.
  353. * sun:                                  Nonstandard Predefined.
  354. * system header files:                  Header Uses.
  355. * unix:                                 Nonstandard Predefined.
  356. * vax:                                  Nonstandard Predefined.
  357. * _AM29000:                             Nonstandard Predefined.
  358. * _AM29K:                               Nonstandard Predefined.
  359. * __BASE_FILE__:                        Standard Predefined.
  360. * __CHAR_UNSIGNED__:                    Standard Predefined.
  361. * __cplusplus:                          Standard Predefined.
  362. * __DATE__:                             Standard Predefined.
  363. * __FILE__:                             Standard Predefined.
  364. * __GNUC__:                             Standard Predefined.
  365. * __GNUG__:                             Standard Predefined.
  366. * __INCLUDE_LEVEL_:                     Standard Predefined.
  367. * __LINE__:                             Standard Predefined.
  368. * __OPTIMIZE__:                         Standard Predefined.
  369. * __STDC__:                             Standard Predefined.
  370. * __STRICT_ANSI__:                      Standard Predefined.
  371. * __TIME__:                             Standard Predefined.
  372. * __VERSION__:                          Standard Predefined.
  373.